6857c4429262073dbb022bae0366bb1f3856c914,Frameworks/EOF/ERRest/Sources/er/rest/routes/ERXRouteController.java,ERXRouteController,performActionNamed,#String#boolean#,1182
Before Change
return errorResponse(meaningfulThrowble, WOMessage.HTTP_STATUS_FORBIDDEN);
}
else {
return errorResponse(meaningfulThrowble, WOMessage.HTTP_STATUS_INTERNAL_ERROR);
}
}
}
After Change
results = errorResponse(meaningfulThrowble, WOMessage.HTTP_STATUS_FORBIDDEN);
}
else {
results = errorResponse(meaningfulThrowble, WOMessage.HTTP_STATUS_INTERNAL_ERROR);
}
// MS: Should we jam the exception in the response userInfo so the transaction adaptor can rethrow the real exception?
}